home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / cmds / gdb.new / gdb-4.0 / bfd / doc / archive.p < prev    next >
Encoding:
Text File  |  1991-09-29  |  952 b   |  40 lines

  1. /* bfd_get_next_mapent
  2. What this does
  3. */
  4.  PROTO(symindex, bfd_get_next_mapent, (bfd *, symindex, carsym **));
  5.  
  6. /*
  7.  
  8.  bfd_set_archive_head
  9.  
  10. Used whilst processing archives. Sets the head of the chain of BFDs
  11. contained in an archive to @var{new_head}. (see chapter on archives)
  12. */
  13.  
  14.  PROTO(boolean, bfd_set_archive_head, (bfd *output, bfd *new_head));
  15.  
  16. /*
  17.  
  18.  bfd_get_elt_at_index
  19. Return the sub bfd contained within the archive at archive index n.
  20. */
  21.  
  22.  PROTO(bfd *, bfd_get_elt_at_index, (bfd *, int));
  23.  
  24. /*
  25.  
  26.  bfd_openr_next_archived_file
  27. Initially provided a BFD containing an archive and NULL, opens a BFD
  28. on the first contained element and returns that. Subsequent calls to
  29. bfd_openr_next_archived_file should pass the archive and the previous
  30. return value to return a created BFD to the next contained element.
  31. NULL is returned when there are no more.
  32. */
  33.  
  34.  PROTO(bfd*, bfd_openr_next_archived_file,
  35.                (bfd *archive, bfd *previous));
  36.  
  37. /*
  38. */
  39.  
  40.